home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / isinf.man,v < prev    next >
Text File  |  1989-08-04  |  2KB  |  68 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 1.1
  10. date     89.08.04.16.18.45;  author douglis;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @manual page for isinf, isnan.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @'\" Copyright 1989 Regents of the University of California
  27. '\" Permission to use, copy, modify, and distribute this
  28. '\" documentation for any purpose and without fee is hereby
  29. '\" granted, provided that this notice appears in all copies.
  30. '\" The University of California makes no representations about
  31. '\" the suitability of this material for any purpose.  It is
  32. '\" provided "as is" without express or implied warranty.
  33. '\" 
  34. '\" $Header: /sprite/lib/forms/RCS/lib.man,v 1.1 89/07/20 11:46:12 ouster Exp $ SPRITE (Berkeley)
  35. '/" 
  36. .so \*(]ltmac.sprite
  37. .HS isnan lib
  38. .BS
  39. '\" Note:  do not modify the .SH NAME line immediately below!
  40. .SH NAME
  41. isnan, isinf \- Determine whether double-precision floating point
  42. numbers are not-a-number or infinity.
  43. .SH SYNOPSIS
  44. .nf
  45. .sp
  46. int
  47. \fBisnan\fR(\fIvalue\fP)
  48. .sp
  49. int
  50. \fBisinf\fR(\fIvalue\fP)
  51. .SH ARGUMENTS
  52. .AP double value in
  53. Double-precision floating point number to check for type.
  54. .BE
  55.  
  56. .SH DESCRIPTION
  57. .PP
  58. \fBisnan\fR returns 1 if its argument is an IEEE double-precision
  59. floating-point number corresponding to NaN (not a number). 
  60. \fBisnan\fR returns 0 otherwise.
  61. .PP
  62. \fBisinf\fR returns 1 if its argument is an IEEE double-precision
  63. floating-point number corresponding to infinity.
  64. \fBisinf\fR returns 0 otherwise.
  65. .SH KEYWORDS
  66. not a number, infinity, IEEE, double
  67. @
  68.